home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #11 / CD 11 (Black) - 2001.iso / K-CS.DCR / 00238_Drag'n'View'n'Drop.ls < prev    next >
Encoding:
Text File  |  2001-06-28  |  2.6 KB  |  59 lines

  1. property TargetSprite, startPos, correctspringBack, incorrectspringBack, incorrectvanish, correctvanish, IncorrectCommand, correctCommand, DescribeSprite
  2. global Errorcount
  3.  
  4. on new me
  5.   set the visible of sprite the spriteNum of me to 1
  6.   set the visible of sprite DescribeSprite to 0
  7. end
  8.  
  9. on mouseDown me
  10.   set startPos to the loc of sprite the spriteNum of me
  11.   repeat while the stillDown = 1
  12.     set the loc of sprite the spriteNum of me to point(the mouseH, the mouseV)
  13.     updateStage()
  14.   end repeat
  15. end
  16.  
  17. on mouseEnter me
  18.   set the visible of sprite DescribeSprite to 1
  19. end
  20.  
  21. on mouseLeave me
  22.   set the visible of sprite DescribeSprite to 0
  23. end
  24.  
  25. on mouseUp me
  26.   if sprite the spriteNum of me intersects sprite(the TargetSprite of me) then
  27.     puppetSound("HitSound")
  28.     do(the correctCommand of me)
  29.     if the correctvanish of me = 1 then
  30.       set the loc of sprite the spriteNum of me to point(1000, 1000)
  31.       exit
  32.     end if
  33.     if the correctspringBack of me = 1 then
  34.       set the loc of sprite the spriteNum of me to startPos
  35.     end if
  36.   else
  37.     do(the IncorrectCommand of me)
  38.   end if
  39.   if the incorrectvanish of me = 1 then
  40.     set the loc of sprite the spriteNum of me to point(1000, 1000)
  41.     exit
  42.   end if
  43.   if the incorrectspringBack of me = 1 then
  44.     set the loc of sprite the spriteNum of me to startPos
  45.   end if
  46. end
  47.  
  48. on getBehaviorDescription
  49.   return "Creates sprites that can be dropped on any other [user specified] sprite. You can define the target sprite, " && RETURN & "whether the dragged sprite snaps back to it's start position, and handlers to run if the drop was on or off target."
  50. end
  51.  
  52. on getPropertyDescriptionList
  53.   if voidp(TargetSprite) then
  54.     set TargetSprite to 1
  55.   end if
  56.   set p_list to [#TargetSprite: [#default: TargetSprite, #format: #integer, #comment: "Target Sprite Number", #range: [#min: 1, #max: 120]], #incorrectspringBack: [#default: 1, #format: #boolean, #comment: "Spring back when incorrect?"], #correctspringBack: [#default: 0, #format: #boolean, #comment: "Spring back when correct?"], #incorrectvanish: [#default: 0, #format: #boolean, #comment: "Vanish when dropped off the target?"], #correctvanish: [#default: 1, #format: #boolean, #comment: "Vanish when dropped on the target?"], #correctCommand: [#format: #string, #comment: "The handler to run if dropped on the target", #default: "beep"], #IncorrectCommand: [#format: #string, #comment: "The handler to run if dropped off the target", #default: "beep 2"], #DescribeSprite: [#default: 0, #format: #integer, #comment: "Description of sprite - appear on rollover, vanish on click", #range: [#min: 1, #max: 120]]]
  57.   return p_list
  58. end
  59.